
.authincation {
    position: relative;
}

.main-wrap {
    background-image: url('../images/main-wrap-background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height:100%;
    width: 100%;
}
.main-wrap::after {
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.main-wrap .authincation-content {
    /* padding: 70px 0; */
    position: relative;
    z-index: 999;
    background-color: #e4e4f3;
}
.main-wrap .stat-content h3{
    font-size: 30px;
}
.main-wrap .card {
    background-color: #e4e4f3;
}
.main-wrap .authincation-content .user-box {
    padding: 50px 70px;
    box-shadow: 0 0 20px 0 black;
    border-radius: 10px;
    background: #1a2b68;
    color: #000;
    transition: ease 0.5s;
}
.main-wrap .authincation-content .user-box:hover {
    transform: scale(1.1);
}
.main-wrap .authincation-content .user-box a:hover {
    color: #fff;
}
.main-wrap .stat-digit {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}


@media only screen and (max-width: 768px) {
    .main-wrap .stat-digit {
        gap: 30px;
    }
    .main-wrap .authincation-content .user-box {
        width: 75%;
        padding: 30px 40px;
        
    }
    .main-wrap .authincation-content .user-box a {
        font-size: 25px;
    }
    /* .main-wrap {
        background-image: none;
    } */
    .main-wrap::after {
        display: none;
    }
}